home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / dounsetenv.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  252b  |  16 lines

  1. #include "kiss.h"
  2.  
  3. int dounsetenv (Stringstack s)
  4. {
  5.     if (getopt (s.nstr, s.str, "h") != -1 || s.nstr != 2)
  6.     {
  7.     warning ("Bad commandline.\n"
  8.          "Usage: unsetenv variable\n");
  9.     return (1);
  10.     }
  11.  
  12.     addtoenv (s.str [1], NULL);
  13.  
  14.     return (0);
  15. }
  16.